home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / os2 / octa209s.zip / octave-2.09 / doc / makefile.os2 < prev   
Makefile  |  1997-08-13  |  495b  |  21 lines

  1. # Makefile for octave's doc directory
  2. # (c) Klaus Gebhardt, 1994 - 1997
  3.  
  4. TOPDIR = ..
  5.  
  6. include $(TOPDIR)/Makeconf.os2
  7.  
  8. srcdir = .
  9.  
  10. MAKE_SUB = make -f ../makefile-subdirs.os2
  11.  
  12. all:
  13.     cd faq         & $(MAKE_SUB) FILE=oct-faq all
  14.     cd interpreter & $(MAKE_SUB) FILE=octave  all
  15.     cd liboctave   & $(MAKE_SUB) FILE=liboct  all
  16.  
  17. clean:
  18.     cd faq         & $(MAKE_SUB) FILE=oct-faq clean
  19.     cd interpreter & $(MAKE_SUB) FILE=octave  clean
  20.     cd liboctave   & $(MAKE_SUB) FILE=liboct  clean
  21.